interrupt vector - translation to English
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

interrupt vector - translation to English

DATA STRUCTURE
Interrupt vector; Interrupt Vector; Interrupt vetor
  • thumb

interrupt vector         

общая лексика

вектор прерывания

адрес программы обработки прерывания с конкретным номером в таблице векторов прерываний. Адрес начала этой таблицы известен процессору и при возникновении прерывания с данным номером управление аппаратно передается подпрограмме его обработки

вектор прерываний

Смотрите также

interrupt handler; interrupt mask; interrupt number; vectored interrupt

vectored interrupt         
PROCESSING TECHNIQUE IN COMPUTER SCIENCE
Vectored Interrupt

общая лексика

векторное прерывание

прерывание, сопровождаемое выдачей уникального кода (номера прерывания), идентифицирующего источник прерывания

Смотрите также

interrupt; interrupt number; interrupt vector

interrupt handler         
COMPUTING FUNCTION TRIGGERED BY AN INTERRUPT
Interrupt service routine; Interrupt routines; Interrupt Handler; Interrupt Service Routine; FLIH; SLIH

общая лексика

IH

обработчик прерываний, подпрограмма обработки прерываний

процедура, получающая управление при возникновении прерывания конкретного типа. Обычно адреса обработчиков прерываний записаны в таблице векторов прерываний

синоним

ISR

Смотрите также

cumulative throughflow; fractional throughflow

Definition

interrupt handler
<software> A routine which is executed when an interrupt occurs. Interrupt handlers typically deal with low-level events in the hardware of a computer system such as a character arriving at a serial port or a tick of a real-time clock. Special care is required when writing an interrupt handler to ensure that either the interrupt which triggered the handler's execution is masked out (inhibitted) until the handler exits, or the handler is re-entrant so that multiple concurrent invocations will not interfere with each other. If interrupts are masked then the handler must execute as quickly as possible so that important events are not missed. This is often arranged by splitting the processing associated with the event into "upper" and "lower" halves. The lower part is the interrupt handler which masks out further interrupts as required, checks that the appropriate event has occurred (this may be necessary if several events share the same interrupt), services the interrupt, e.g. by reading a character from a UART and writing it to a queue, and re-enabling interrupts. The upper half executes as part of a user process. It waits until the interrupt handler has run. Normally the {operating system} is responsible for reactivating a process which is waiting for some low-level event. It detects this by a shared flag or by inspecting a shared queue or by some other synchronisation mechanism. It is important that the upper and lower halves do not interfere if an interrupt occurs during the execution of upper half code. This is usually ensured by disabling interrupts during critical sections of code such as removing a character from a queue. (2002-07-24)

Wikipedia

Interrupt vector table

An interrupt vector table (IVT) is a data structure that associates a list of interrupt handlers with a list of interrupt requests in a table of interrupt vectors. Each entry of the interrupt vector table, called an interrupt vector, is the address of an interrupt handler. While the concept is common across processor architectures, IVTs may be implemented in architecture-specific fashions. For example, a dispatch table is one method of implementing an interrupt vector table.

What is the Russian for interrupt vector? Translation of &#39interrupt vector&#39 to Russian